-
-
Notifications
You must be signed in to change notification settings - Fork 169
cleanup IPConfig2/Http Protocol #1640
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
@@ -357,12 +357,6 @@ pub fn run_qemu(arch: UefiArch, opt: &QemuOpt) -> Result<()> { | |||
|
|||
cmd.args(["-device", "virtio-rng-pci"]); | |||
|
|||
if arch == UefiArch::IA32 || arch == UefiArch::X86_64 { | |||
cmd.args(["-debugcon", "file:./integration-test-debugcon.log"]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
moved it to the arch specific stuff below, where it fits much better
@@ -357,12 +357,6 @@ pub fn run_qemu(arch: UefiArch, opt: &QemuOpt) -> Result<()> { | |||
|
|||
cmd.args(["-device", "virtio-rng-pci"]); | |||
|
|||
if arch == UefiArch::IA32 || arch == UefiArch::X86_64 { | |||
cmd.args(["-debugcon", "file:./integration-test-debugcon.log"]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
moved it to the arch specific stuff below, where it fits much better
It depends on how OVMF is built: https://github.com/tianocore/edk2/blob/62390a89c5eb477594b74b5e1911d65998a8abe2/OvmfPkg/README#L90 Currently, ovmf-prebuilt uses the |
Follow-up of #1614 by @kraxel.
.gitignore
Checklist